home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / borland / bc31p3.zip / PATINIT.BAT < prev    next >
DOS Batch File  |  1992-08-19  |  768b  |  34 lines

  1. echo OFF
  2. echo This batch file will fix the problem with TBROWSER.DLL
  3. echo You must be on the directory where TBROWSER.DLL resides in order to
  4. echo run this batch file successfully.  The PATCH.COM file provided with
  5. echo this patch package should also reside on this directory.
  6. pause
  7.  
  8. if not exist patch.com goto HELP0
  9. :dllstart
  10. if not exist TBROWSER.DLL goto HELP1
  11. patch -u bc31p3.pch tbrowser.dll > nul
  12. if ERRORLEVEL 1 goto dllerror
  13. echo Patch successfully installed.
  14. goto DONE:
  15. :dllerror
  16. echo TBROWSER.DLL is incorrect version or is already patched
  17. goto DONE:
  18.  
  19.  
  20. :HELP0
  21. echo  
  22. echo ERROR:  unable to find PATCH.COM.  Aborting batch file!
  23. echo
  24. goto DONE:
  25.  
  26. :HELP1
  27. echo
  28. echo WARNING:  unable to find TBROWSER.DLL
  29. echo
  30. goto DONE:
  31.  
  32.  
  33. :DONE
  34.